home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 21 / Cream of the Crop 21 (Terry Blount) (October 1996).iso / program / fllab200.zip / INST32 / FLASHREG.PAS < prev   
Pascal/Delphi Source File  |  1996-03-25  |  326b  |  20 lines

  1. unit Flashreg;
  2.  
  3. interface
  4.  
  5. uses
  6.     Classes, DsgnIntF,
  7.     FlashLab, ClrCycEd, ClrCycE2;
  8.  
  9. procedure Register;
  10.  
  11. implementation
  12.  
  13. procedure Register;
  14. begin
  15.     RegisterComponents('New', [TMCFlashServer, TMCFlashLabel]);
  16.     RegisterPropertyEditor(TypeInfo(TColorCycling), nil, '', TColorCyclingPropertyEditor);
  17. end;
  18.  
  19. end.
  20.